home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950528-19950726 / 000325_news@columbia.edu_Wed Jul 12 13:15:03 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22057
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Jul 1995 10:31:41 -0400
  3. Received: by apakabar.cc.columbia.edu id AA16929
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Jul 1995 10:31:37 -0400
  5. Path: news.columbia.edu!panix!news1.panix.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!news.sprintlink.net!Pulsar.Tach.Net!news
  6. From: "Corey A. Johnson" <cjohnson@mercedes.surf.tach.net>
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: DOS to Linux - TCP/IP problems...
  9. Date: 12 Jul 1995 13:15:03 GMT
  10. Organization: Mercedes Homes, INC.
  11. Lines: 67
  12. Message-Id: <3u0hsn$882@Pulsar.Tach.Net>
  13. Nntp-Posting-Host: mercedes.surf.tach.net
  14. Mime-Version: 1.0
  15. Content-Type: text/plain; charset=us-ascii
  16. Content-Transfer-Encoding: 7bit
  17. X-Mailer: Mozilla 1.1N (Windows; I; 16bit)
  18. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19.  
  20. Okay... I give up... I am beat... (not really, or I wouldn't be posting, 
  21. just real close <g>)...  Just a recap, in case of some new readers:  I am 
  22. trying to connect my DOS PC to a linux box via TCP/IP with MS-Kermit... 
  23. My network card is a 3COM 509 UTP... I am loading just the following 
  24. network drivers in my autoexec.bat:  (i commented out my other network 
  25. stuff to keep it simple, when I get this working I will try them both 
  26. simultaneously)
  27.  
  28. C:\MSKERMIT\3C5X9PD 0x61 0x10 0x300
  29. pause
  30. C:\MSKERMIT\WINPKT 0x61
  31. pause
  32.  
  33. The drivers load without any errors...
  34.   
  35.   My mscustom.ini file has the following entries for tcp/ip: (the only 
  36. systems I am interested in are my pc and the linux box.  I am not 
  37. concerned at this time with connecting to the internet or other pc on our 
  38. LAN)
  39.  
  40. SET TCP/IP ADDRESS 199.0.9.219  ; My PC's numeric IP address
  41. SET TCP/IP SUBNETMASK 255.255.255.0 ; My physical network's subnet mask
  42. ; SET TCP/IP DOMAIN my_pc       ; My PC's fully qualified domain name
  43. ; SET TCP/IP GATEWAY 199.0.9.218    ; My network gateway's IP address
  44. ; SET TCP/IP PRIMARY-NAMESERVER 123.123.123.2   ; Primary nameserver's 
  45. address
  46. ; SET TCP/IP SECONDARY-NAMESERVER 123.123.123.3 ; fallback nameserver 
  47. address
  48. SET TCP/IP BROADCAST 199.0.9.255 ; My network's broadcast address
  49. SET TCP/IP PACKET-DRIVER \x61 
  50. SET PORT TCP/IP 199.0.9.218   ; The IP address of the Linux Box
  51. CONNECT
  52.  
  53. When I start Kermit, i get the following errors:
  54.  
  55.     Resolving address of host 199.0.9.218
  56.  
  57.     Unable to ARP resolve 199.0.9.218
  58.     Unable to connect to host
  59.     The host may be down or a gateway may be needed
  60.  
  61. With the above drivers loaded in my autoexec.bat, i can connect to the 
  62. Linux box via Trumpet Winsock in Windows and Telnet into the host, so why 
  63. can't I in DOS with MS-Kermit?  I also tried the lsl/3c5x9/ipxodi 
  64. approach, with this net.cfg file:
  65.  
  66.     Protocol KERMIT
  67.         bind 3C5X9
  68.  
  69. Link Support
  70.         Buffers 6 1600
  71.  
  72. Link Driver 3C5X9
  73.         INT 10
  74.         PORT 300
  75.         FRAME Ethernet_II
  76.         Protocol IPX    8137    Ethernet_II
  77.         Protocol IP     0800    Ethernet_II
  78.         Protocol ARP    0806    Ethernet_II
  79.         Protocol RARP   8035    Ethernet_II
  80.  
  81. And I received the same messages in Kermit as annotated above.  Please, 
  82. any assistance would be greatly appreciated.  Thanks in advance...
  83.  
  84. Dazed and Confused,
  85. Corey...
  86.